Firebase bildirim uzunluğu
06.06.2018 - 12:19
Mrb ;
Firebase ile bildirim ekledim uygulamama fakat gönderdiğim bildirimlerde uzun metin yazdığım zaman telefona geldiğinde genişletemiyorum belirli bir karakter sonra metin görünmüyor bunu nasıl yaparız
public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = "MyFirebaseMessagingService";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(TAG, "From: " + remoteMessage.getFrom());
// notification geldiğinde konsolda yazdırılacak olan kısım
Log.d(TAG, "Notification Message Body: " + remoteMessage.getNotification().getBody());
// alttaki metod sayesinde gönderilen notification alınıp metoda parametre olarak gönderiliyor.
sendNotification(remoteMessage.getNotification().getBody());
}
// notification göndermek için gerekli metod
private void sendNotification(String messageBody) {
Intent intent = new Intent(this,Anasayfa.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this,0,intent,PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
android.support.v4.app.NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Bildirim")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());
}
}
9
Görüntülenme
0 Beğeni